From: Lars Magne Ingebrigtsen Date: Fri, 15 Jul 2011 14:59:42 +0000 (+0200) Subject: * emacs-lisp/cl-macs.el (declare): Doc string fix-up. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~2812 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8d705dd64c71f2d0b8f02bd66b0bdc3142c40df7;p=emacs.git * emacs-lisp/cl-macs.el (declare): Doc string fix-up. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ea39d92732c..9093e9ce96f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2011-07-15 Lars Magne Ingebrigtsen + * emacs-lisp/cl-macs.el (declare): Doc string fix-up. + * international/mule-cmds.el (describe-specified-language-support): Make the error message clearer (bug#8905). diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 623d1c6418f..4f9e0e8b70a 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -1601,12 +1601,12 @@ values. For compatibility, (values A B C) is a synonym for (list A B C). ;;;###autoload (defmacro declare (&rest specs) - "Declare something about SPECS while compiling. + "Declare SPECS about the current function while compiling. For instance \(declare (warn 0)) -will turn off byte-compile warnings." +will turn off byte-compile warnings in the function." (if (cl-compiling-file) (while specs (if (listp cl-declare-stack) (push (car specs) cl-declare-stack))